home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / Macintosh Drag and Drop / Demo Applications / FinderDrag / StringLib.h < prev   
Encoding:
C/C++ Source or Header  |  1995-06-09  |  273 b   |  15 lines  |  [TEXT/MPS ]

  1.  
  2.  
  3. #ifndef __STRINGLIB__
  4. #define __STRINGLIB__
  5.  
  6. #include <Types.h>
  7. #include <stdarg.h>
  8.  
  9.  
  10. void pstrcat(Str255 frontStr, ConstStr255Param backStr);
  11. void newline(Str255 str);
  12. void pstrcpy(void *src, void *dest);
  13. void concat(Str255 resultString, short stringCount, ...);
  14.  
  15. #endif